6f627f9252e37ca59950bab7a8ba5b1c0bc619cd,source/org/jasig/portal/StandaloneChannelRenderer.java,StandaloneChannelRenderer,initialize,#Hashtable#String#boolean#boolean#boolean#number#IPerson#,97

Before Change


    public void initialize(Hashtable params,String channelName,boolean hasHelp, boolean hasAbout, boolean hasEdit, long timeOut,IPerson person) throws PortalException {
	this.set = new StylesheetSet(this.getClass().getResource(relativeSSLLocation).toString());
        String mediaPropsUrl = this.getClass().getResource("/properties/media.properties").toString();
        String mimePropsUrl = this.getClass().getResource("/properties/media.properties").toString();
        String serializerPropsUrl = this.getClass().getResource("/properties/media.properties").toString();
	this.set.setMediaProps(mediaPropsUrl);
        this.mediaM = new MediaManager(mediaPropsUrl, mimePropsUrl, serializerPropsUrl);
	this.channelName=channelName;

After Change


    public void initialize(Hashtable params,String channelName,boolean hasHelp, boolean hasAbout, boolean hasEdit, long timeOut,IPerson person) throws PortalException {
	this.set = new StylesheetSet(ResourceLoader.getResourceAsURLString(this.getClass(), relativeSSLLocation));
        String mediaPropsUrl = ResourceLoader.getResourceAsURLString(this.getClass(), "/properties/media.properties");
        String mimePropsUrl = ResourceLoader.getResourceAsURLString(this.getClass(), "/properties/mime.properties");
        String serializerPropsUrl = ResourceLoader.getResourceAsURLString(this.getClass(), "/properties/serializer.properties");
	this.set.setMediaProps(mediaPropsUrl);
        this.mediaM = new MediaManager(mediaPropsUrl, mimePropsUrl, serializerPropsUrl);
	this.channelName=channelName;